home *** CD-ROM | disk | FTP | other *** search
- put "Helper" into v
- if which is "windows" then
- global winMenu
- if winMenu is empty then put buildWinMenu() into winMenu
- put btn2rect of window "Helper" into x
- put item 1 of x&","&item 2 of x into x
- put getPopMen(winMenu,x,Helper,1) into y
- if y is in "Numbers Monitor Length selector size infoid" then
- helpEx y
- else
- put y&"--No other info, hopefully obvious"
- end if
- end if
- if which is "reports" then
- put btn3rect of window "Helper" into x
- put item 1 of x&","&item 2 of x into x
- put getPopMen("Report,Report tips,Loop Find...,Messages,Move Things,Create Things...",x,helper,1) into y
- if y is empty then exit to hypercard
- put procPath() into path
- if y is "report" then
- put ResText(TEXT,aboutInfo,path) into x
- textoid Reports, x
- end if
- if y is "report tips" then
- put ResText(TEXT,repTips,path) into x
- textoid "Report Tips", x
- end if
- if y is "Loop Find..." then
- put ResText(TEXT,loops,path) into x
- textoid "loops", x
- else
- helpEx y
- end if
- end if
- if which is "scripts" then
- put btn7rect of window "Helper" into x
- put item 1 of x&","&item 2 of x into x
- put getPopMen("Scripts,HandleCounter",x,helper,1) into y
- if y is empty then exit to hypercard
- helpEx y
- end if